总结篇(三) -- 你知道 log 出来的 this 是什么么
概述
函数中的 this
是一个很重要的知识点,如果能清楚的知道各种场景下函数中 this
所代表的值,那么对于我们去理解库 | 框架是很有帮助的,也可以让我们去运用一些更加高级的思想
this
this
的使用情况大致分为两种
- 函数中
- 对象的方法中
1
this === call | apply | bind 的第一个参数
在判断 this
的值的时候,进行相应的转化是很有必要的
严格模式 + 非严格模式
示例一
1 | 'use strict' |
上述中的 this
会打印出什么呢?1
fn( 1, 2 ) === fn.call( undefined, 1, 2 ) === fn.apply( undefined, [1, 2] )
答案
- 严格模式 ==>
this === undefined
- 非严格模式 ==>
this === undefined == 浏览器转化 ==> window
对象方法
示例二
1 | let obj = { |
上述中的 this
会打印出什么呢?1
2obj.fn( 1, 2 ) === obj.fn.call( obj, 1, 2 ) === obj.fn.apply( undefined, [ 1, 2 ] ) ==> this === obj
obj.child.fn2() === obj.child.fn2.call( obj.child ) ==> this === obj.child
示例三
1 | let arr = [] |
上述中的 this
会打印出什么呢?1
2arr[ 0 ] ==> arr 对象{ 0: fn, 1: fn, 2: fn } ==> arr.0 ==> arr.0.call( this ) ==> this === arr
fn() ==> fn.call( undefined ) ==> this === undefined == 浏览器转化 ==> window
bind
bind
的用法在之前有讲过,这个 API 就是返回一个函数 + 绑定 this
示例四
1 | let obj = { a: 1 } |
上述中的 this
会打印出什么呢?1
newFn() === fn.bind( obj )() ==> this === obj ==> this.a === 1
示例五
1 | let obj = { |
上述中的 this
会打印出什么呢?1
2
3bind 中的 ` this ` ==> obj.bind.call( obj ) ==> this === obj
this.container.addEventListener( 'click', this.sayHello ) 当点击事件触发时,sayHello 打印出的 this ==> this === 绑定事件的元素(this.container) ==> this === obj.container
this.container.addEventListener( 'click', this.sayHello.bind( this ) ) 当点击事件触发时,sayHello 打印出的 this ==> bind 绑定了 this[ this === obj ] ==> sayHello 打印出的 this === obj
箭头函数
箭头函数没有 this + arguments
示例六
1 | let obj = { |
上述中的 this
会打印出什么呢?1
2
3
4obj.fn1() === obj.fn1.call( obj ) ==> this === obj
obj.fn2() === obj.fn2.call( obj ) ==> this === obj
fn1 的写法 === fn2 的写法
obj.fn3() === obj.fn3.call( 与 obj 同级 this ) ==> this === window
示例七
1 | let obj = { |
上述中的 this
会打印出什么呢?1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16let obj = {
init() {
console.log( this ) // 2. this === obj
let prop = {
init: () => {
console.log( this ) // 4. this === prop 同级 this ==> this === obj
},
bind() {
console.log( this ) // 6. this === prop
}
}
prop.init() // 3. init() 是箭头函数 ==> prop.init.call( prop 同级 this )
prop.bind() // 5. bind 不是箭头函数 ==> prop.bind.call( prop )
}
}
obj.init() // 1. === obj.init.call( obj )
示例八
1 | let obj = { |
obj.x 的值是什么?
上述中的 this
会打印出什么呢?
1 | let obj = { |
fn1()1
2
3
4
5
6
7
8
9
10
11
12
13fn1() {
console.log( this ) // 2. this === obj
setTimeout( function(){
console.log( this )
}, 10 )
// 3. 等价于
// function fn(){
// console.log( this ) // 5. this === undefined == 浏览器转化 ==> window
// }
// 过 10s 执行函数 fn
// fn() // 4. fn 非箭头函数 fn.call( undefined )
}
obj.fn1() // 1. fn1 非箭头函数 obj.fn1.call( obj )
fn2()1
2
3
4
5
6
7
8
9
10
11
12
13fn2() {
console.log( this ) // 2. this === obj
setTimeout( () => {
console.log( this ) // 5. this === 上级 this ==> this === obj
}, 20 )
// 3. 等价于
// () => {
// console.log( this )
// }
// 过 20s 执行箭头函数
// 箭头函数() // 4. 箭头函数 箭头函数.call( 上级this )
}
obj.fn2() // 1. fn2 非箭头函数 obj.fn2.call( obj )
fn3()1
2
3
4
5
6
7
8
9
10
11
12
13fn3() {
console.log( this ) // 2. this === obj
setTimeout( function(){
console.log( this )
}.bind( this ), 30 )
// 3. 等价于
// function fn(){
// console.log( this ) // 5. this === obj
// }.bind( this )
// 过 30s 执行函数 fn
// fn.bind(this) // 4. fn 非箭头函数 + bind 绑定 this[ this === obj ]
}
obj.fn3() // 1. fn3 非箭头函数 obj.fn3.call( obj )
fn4()1
2
3
4
5
6
7
8
9
10
11
12
13fn4: () => {
console.log( this ) // 2. this === obj 同级 this ==> this === window
setTimeout( () => {
console.log( this )
}, 40 )
// 3. 等价于
// () => {
// console.log( this ) // 5. this === window
// }
// 过 40s 后执行箭头函数
// 箭头函数() // 4. 箭头函数 箭头函数.call( 上级 this )
}
obj.fn4() // 1. fn4 箭头函数 obj.fn4.call( obj 同级 this )
总结
判断函数中 this
步骤
- 查看调用函数的类型
- 箭头函数
- 箭头函数.call( 上级 this )
- obj.箭头函数.call( obj 同级 this )
- 非箭头函数
- 非箭头函数.call( undefined )
- obj.非箭头函数.call( obj )